home *** CD-ROM | disk | FTP | other *** search
- #ifndef _MENU_H_
- #define _MENU_H_
-
- #ifndef _WINDOW_H_
- #include <pm/Window.h>
- #endif
-
- @interface Menu : Window <Archiving>
- {
- id itemList;
- }
-
- - init;
- - initWithId: (ULONG) anId andFlags: (ULONG) flags;
- - initWithId: (ULONG) anId andFlags: (ULONG) flags in: parent;
-
- - free;
-
- - insertItem: anItem at: (SHORT) pos;
-
- - enableItem: (USHORT) identifier;
- - disableItem: (USHORT) identifier;
-
- - popup: sender;
-
- - itemList;
-
- - awake;
- - read: (TypedStream *) aStream;
- - write: (TypedStream *) aStream;
-
- @end
-
- #endif
-